*{
margin:0;
padding:0;
box-sizing:border-box;
font-family:Arial;
}

header{
display:flex;
justify-content:space-between;
padding:20px;
background:#4b2e2e;
color:white;
}

nav a{
color:white;
margin-left:20px;
text-decoration:none;
}

.order-section{
height:100vh;
background-image:url("./../../image/coffee.webp");
background-size:cover;
background-position:center;
display:flex;
justify-content:center;
align-items:center;
}

.order-box{
background:rgba(0,0,0,0.6);
padding:40px;
border-radius:10px;
color:white;
width:350px;
text-align:center;
}

.order-box h1{
margin-bottom:20px;
}

input,select,textarea{
width:100%;
padding:10px;
margin:10px 0;
border:none;
border-radius:5px;
}

button{
background:#6d4c41;;
border:none;
padding:12px;
width:100%;
color:#fff;


cursor:pointer;
font-size:16px;
border-radius:5px;
}

button:hover{
background:#5d4037;
}
.footer {
  background: #2b1d1a;
  color: #ccc;
  padding: 40px 8% 20px;
}

.footer-container {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 30px;
}

.footer-section h3 {
  color: #fff;
  margin-bottom: 10px;
}

.footer-section p {
  font-size: 15px;
  line-height: 1.6;
}

.footer-section ul {
  list-style: none;
}

.footer-section ul li {
  margin-bottom: 8px;
}

.footer-section ul li a {
  color: #ccc;
  text-decoration: none;
  transition: 0.3s;
}

.footer-section ul li a:hover {
  color: #ffcc80;
}

.footer-bottom {
  text-align: center;
  border-top: 1px solid #444;
  margin-top: 20px;
  padding-top: 10px;
  font-size: 13px;
}


@media (max-width:768px){
    header{
        flex-direction: column;
        text-align: center;

    }
    nav a{
        display: block;
        margin: 10px 0;
    }

    .order-box{
        width: 90%;
        padding: 20px;
    }
    }



    
footer{
    background:#2b1d1a;
    color:#ccc;
    padding:30px 8%;
    text-align:center;
    font-size:14px;
}
